runtime.inlineUnwinder.next (method)

9 uses

	runtime (current package)
		mprof.go#L598: 			for ; uf.valid(); uf = u.next(uf) {
		panic.go#L1128: 			for iu, f := newInlineUnwinder(u.frame.fn, u.symPC()); f.valid(); f = iu.next(f) {
		symtab.go#L155: 			for unext := u.next(uf); unext.valid() && len(ci.callers) > 0 && ci.callers[0] != unext.pc+1; unext = u.next(unext) {
		symtab.go#L282: 	for ; uf.valid(); uf = u.next(uf) {
		symtabinl.go#L91: func (u *inlineUnwinder) next(uf inlineFrame) inlineFrame {
		traceback.go#L629: 		for iu, uf := newInlineUnwinder(f, u.symPC()); n < len(pcBuf) && uf.valid(); uf = iu.next(uf) {
		traceback.go#L971: 		for iu, uf := newInlineUnwinder(f, u.symPC()); uf.valid(); uf = iu.next(uf) {
		tracestack.go#L331: 		for ; uf.valid(); uf = u.next(uf) {